home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d16 / winsql.arc / EXAMPLES.ARC / QUERY16.SQL < prev   
Encoding:
Text File  |  1991-06-02  |  191 b   |  12 lines

  1. create table temp (
  2.   pno       char(6),
  3.   totqty    integer
  4. );
  5.  
  6. insert into temp (pno, totqty)
  7.   select pno, sum(qty) from sp group by pno;
  8.  
  9. select * from temp;
  10.  
  11. drop table temp;
  12.